- Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCD7C542F15EB
1037 lines (946 loc) · 27.7 KB
/
CD7C542F15EB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.2.0 present.
Table at 0x000E0000.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: Dell Inc.
Version: 2.28.1
Release Date: 11/14/2024
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 32 MB
Characteristics:
PCI is supported
PNP is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
EDD is supported
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Function key-initiated network boot is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 2.28
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Dell Inc.
Product Name: OptiPlex 3080
Version: Not Specified
Serial Number: --
UUID: --
Wake-up Type: Power Switch
SKU Number: 09A8
Family: OptiPlex
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Dell Inc.
Product Name: 0M3F6C
Version: A01
Serial Number: --
Asset Tag: --
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Not Specified
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x0003, DMI type 3, 22 bytes
Chassis Information
Manufacturer: Dell Inc.
Type: Desktop
Lock: Not Present
Version: Not Specified
Serial Number: --
Asset Tag: --
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: 1
Contained Elements: 0
SKU Number: Desktop
Handle 0x0004, DMI type 11, 5 bytes
OEM Strings
String 1: Dell System
String 2: 1[09A8]
String 3: 3[1.0]
String 4: 12[www.dell.com]
String 5: 14[1]
String 6: 15[8]
String 7: 27[11671867263]
String 8: 28[1]
Handle 0x0005, DMI type 12, 5 bytes
System Configuration Options
Option 1: Default string
Handle 0x0006, DMI type 15, 35 bytes
System Event Log
Area Length: 4 bytes
Header Start Offset: 0x0000
Header Length: 2 bytes
Data Start Offset: 0x0002
Access Method: Indexed I/O, one 16-bit index port, one 8-bit data port
Access Address: Index 0x046A, Data 0x046C
Status: Invalid, Not Full
Change Token: 0x00000000
Header Format: No Header
Supported Log Type Descriptors: 6
Descriptor 1: End of log
Data Format 1: OEM-specific
Descriptor 2: End of log
Data Format 2: OEM-specific
Descriptor 3: End of log
Data Format 3: OEM-specific
Descriptor 4: End of log
Data Format 4: OEM-specific
Descriptor 5: End of log
Data Format 5: OEM-specific
Descriptor 6: End of log
Data Format 6: OEM-specific
Handle 0x0007, DMI type 25, 9 bytes
System Power Controls
Next Scheduled Power-on: *-* 00:00:00
Handle 0x0008, DMI type 32, 20 bytes
System Boot Information
Status: No errors detected
Handle 0x0009, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 64 GB
Error Information Handle: Not Provided
Number Of Devices: 2
Handle 0x000A, DMI type 17, 84 bytes
Memory Device
Array Handle: 0x0009
Error Information Handle: Not Provided
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: SODIMM
Set: None
Locator: DIMM1
Bank Locator: Not Specified
Type: DDR4
Type Detail: Synchronous
Speed: 2666 MT/s
Manufacturer: 80AD000080AD
Serial Number: --
Asset Tag: --
Part Number: HMA82GS6JJR8N-VK
Rank: 2
Configured Memory Speed: 2666 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Not Specified
Module Manufacturer ID: Bank 1, Hex 0xAD
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x000B, DMI type 17, 84 bytes
Memory Device
Array Handle: 0x0009
Error Information Handle: Not Provided
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: SODIMM
Set: None
Locator: DIMM2
Bank Locator: Not Specified
Type: DDR4
Type Detail: Synchronous
Speed: 2666 MT/s
Manufacturer: 80AD000080AD
Serial Number: --
Asset Tag: --
Part Number: HMA82GS6DJR8N-VK
Rank: 2
Configured Memory Speed: 2666 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Not Specified
Module Manufacturer ID: Bank 1, Hex 0xAD
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x000C, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x007FFFFFFFF
Range Size: 32 GB
Physical Array Handle: 0x0009
Partition Width: 2
Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: LAN
External Connector Type: RJ-45
Port Type: Network Port
Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: DisplayPort 1
External Connector Type: Other
Port Type: Video Port
Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: HDMI 1
External Connector Type: Other
Port Type: Video Port
Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Rear USB 3.0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Rear USB 3.0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Rear USB 2.0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Not Specified
Internal Connector Type: None
External Reference Designator: Rear USB 2.0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA0
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: FAN_CPU
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: INTRUDER
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: INT_SPKR
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: THRM_2
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: FRONTPANEL
Internal Connector Type: Other
External Reference Designator: Microphone
External Connector Type: Mini Jack (headphones)
Port Type: Audio Port
Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: FRONTPANEL
Internal Connector Type: Other
External Reference Designator: Headphone
External Connector Type: Mini Jack (headphones)
Port Type: Audio Port
Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: FRONTPANEL
Internal Connector Type: Other
External Reference Designator: Front USB 3.0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x001C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: FRONTPANEL
Internal Connector Type: Other
External Reference Designator: Front USB 3.0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x001D, DMI type 9, 17 bytes
System Slot Information
Designation: SLOT1_M.2
Type: M.2 Socket 3
Data Bus Width: 4x or x4
Current Usage: In Use
Length: Long
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:ff:00.0
Handle 0x001E, DMI type 9, 17 bytes
System Slot Information
Designation: SLOT2_M.2
Type: M.2 Socket 1-SD
Data Bus Width: 1x or x1
Current Usage: In Use
Length: Short
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:03:00.0
Handle 0x001F, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00400000000
Ending Address: 0x007FFFFFFFF
Range Size: 16 GB
Physical Device Handle: 0x000A
Memory Array Mapped Address Handle: 0x000C
Partition Row Position: 1
Interleave Position: 2
Interleaved Data Depth: 1
Handle 0x0020, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x003FFFFFFFF
Range Size: 16 GB
Physical Device Handle: 0x000B
Memory Array Mapped Address Handle: 0x000C
Partition Row Position: 1
Interleave Position: 1
Interleaved Data Depth: 1
Handle 0x0021, DMI type 237, 12 bytes
OEM-specific Type
Header and Data:
ED 0C 21 00 01 01 00 02 00 00 BF 00
Strings:
BIOS Guard
Handle 0x0022, DMI type 237, 26 bytes
OEM-specific Type
Header and Data:
ED 1A 22 00 03 01 00 09 00 31 50 00 02 00 00 00
00 FE 00 03 00 01 0D 20 00 00
Strings:
Reference Code - CPU
uCode Version
TXT ACM version
Handle 0x0023, DMI type 237, 26 bytes
OEM-specific Type
Header and Data:
ED 1A 23 00 03 01 00 09 00 31 50 00 02 00 0C 00
00 0A 00 03 04 0E 05 37 D3 08
Strings:
Reference Code - ME
MEBx version
ME Firmware Version
Consumer SKU
Handle 0x0024, DMI type 237, 47 bytes
OEM-specific Type
Header and Data:
ED 2F 24 00 06 01 00 09 00 31 50 00 02 03 FF FF
FF FF FF 04 00 FF FF FF 00 00 05 00 FF FF FF 00
00 06 00 FF FF FF FF FF 07 00 0B 00 00 00 00
Strings:
Re.erence Code - CML PCH
PCH-CRID Status
Disabled
PCH-CRID Original Value
PCH-CRID New Value
OPROM - RST - RAID
CMLV PCH H Ax Hsio Version
Handle 0x0025, DMI type 237, 54 bytes
OEM-specific Type
Header and Data:
ED 36 25 00 07 01 00 09 00 31 50 00 02 00 00 00
00 46 00 03 00 09 00 31 50 00 04 05 FF FF FF FF
FF 06 00 00 00 00 03 00 07 00 00 00 00 03 00 08
00 FF FF FF FF FF
Strings:
Reference Code - SA - System Agent
Reference Code - MRC
SA - PCIe Version
SA-CRID Status
Disabled
SA-CRID Original Value
SA-CRID New Value
OPROM - VBIOS
Handle 0x0026, DMI type 7, 27 bytes
Cache Information
Socket Designation: L1 Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 384 kB
Maximum Size: 384 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Parity
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0027, DMI type 7, 27 bytes
Cache Information
Socket Designation: L2 Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 1536 kB
Maximum Size: 1536 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 4-way Set-associative
Handle 0x0028, DMI type 7, 27 bytes
Cache Information
Socket Designation: L3 Cache
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 12 MB
Maximum Size: 12 MB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Multi-bit ECC
System Type: Unified
Associativity: 16-way Set-associative
Handle 0x0029, DMI type 4, 48 bytes
Processor Information
Socket Designation: U3E1
Type: Central Processor
Family: Core i5
Manufacturer: Intel(R) Corporation
ID: 53 06 0A 00 FF FB EB BF
Signature: Type 0, Family 6, Model 165, Stepping 3
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Multi-threading)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Core(TM) i5-10500T CPU @ 2.30GHz
Voltage: 0.6 V
External Clock: 100 MHz
Max Speed: 4200 MHz
Current Speed: 792 MHz
Status: Populated, Enabled
Upgrade: Other
L1 Cache Handle: 0x0026
L2 Cache Handle: 0x0027
L3 Cache Handle: 0x0028
Serial Number: --
Asset Tag: --
Part Number: Not Specified
Core Count: 6
Core Enabled: 6
Thread Count: 12
Characteristics:
64-bit capable
Multi-Core
Hardware Thread
Execute Protection
Enhanced Virtualization
Power/Performance Control
Handle 0x002A, DMI type 43, 31 bytes
TPM Device
Vendor ID: NTC
Specification Version: 2.0
Firmware Revision: 7.2
Description: NUVOTON
Characteristics:
Family configurable via platform software support
OEM-specific Information: 0x00000000
Handle 0x1B00, DMI type 27, 15 bytes
Cooling Device
Temperature Probe Handle: 0x1C00
Type: Chip Fan
Status: OK
OEM-specific Information: 0x0000DD00
Nominal Speed: 5684 rpm
Description: CPU Fan
Handle 0x1C00, DMI type 28, 22 bytes
Temperature Probe
Description: CPU Thermal Probe
Location: Processor
Status: OK
Maximum Value: 127.0 deg C
Minimum Value: -127.0 deg C
Resolution: 1.000 deg C
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x0000DC00
Nominal Value: 10.0 deg C
Handle 0x1C01, DMI type 28, 22 bytes
Temperature Probe
Description: PCH thermal
Location: Motherboard
Status: OK
Maximum Value: 127.0 deg C
Minimum Value: -127.0 deg C
Resolution: 1.000 deg C
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x0000DC01
Nominal Value: 10.0 deg C
Handle 0x1C03, DMI type 28, 22 bytes
Temperature Probe
Description: <BAD INDEX>
Location: Disk
Status: OK
Maximum Value: 127.0 deg C
Minimum Value: -127.0 deg C
Resolution: 1.000 deg C
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x0000DC02
Nominal Value: 10.0 deg C
Handle 0x1C04, DMI type 28, 22 bytes
Temperature Probe
Description: <BAD INDEX>
Location: Disk
Status: OK
Maximum Value: 127.0 deg C
Minimum Value: -127.0 deg C
Resolution: 1.000 deg C
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x0000DC03
Nominal Value: 10.0 deg C
Handle 0x1C05, DMI type 28, 22 bytes
Temperature Probe
Description: Ambient
Location: Motherboard
Status: OK
Maximum Value: 127.0 deg C
Minimum Value: -127.0 deg C
Resolution: 1.000 deg C
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x0000DC04
Nominal Value: 10.0 deg C
Handle 0xB100, DMI type 177, 12 bytes
OEM-specific Type
Header and Data:
B1 0C 00 B1 02 00 00 00 00 00 00 00
Handle 0xB200, DMI type 178, 84 bytes
OEM-specific Type
Header and Data:
B2 54 00 B2 3D 00 0C 00 3C 00 0A 00 3B 00 0B 00
0A 01 12 00 52 00 20 00 30 00 24 00 42 00 18 00
58 00 14 00 57 00 13 00 10 00 FF 00 11 00 FF 00
12 00 FF 00 13 00 FF 00 14 00 FF 00 1E 00 FF 00
1F 00 FF 00 20 00 FF 00 21 00 FF 00 22 00 FF 00
50 01 26 00
Strings:
Handle 0xD000, DMI type 208, 16 bytes
OEM-specific Type
Header and Data:
D0 10 00 D0 03 11 FE 00 A8 09 01 02 00 00 00 00
Strings:
20210612
20210907
Handle 0xD200, DMI type 210, 12 bytes
OEM-specific Type
Header and Data:
D2 0C 00 D2 F8 03 04 03 06 80 04 03
Handle 0xD800, DMI type 216, 9 bytes
OEM-specific Type
Header and Data:
D8 09 00 D8 01 02 01 88 00
Strings:
"Intel Corp."
"2089"
Handle 0xDA00, DMI type 218, 251 bytes
OEM-specific Type
Header and Data:
DA FB 00 DA B2 00 04 EF 1E B6 10 05 00 05 00 03
00 06 00 06 00 05 00 0F 00 0F 00 00 00 11 00 11
00 02 00 12 00 12 00 04 00 1E 00 1E 00 00 00 22
00 22 00 01 00 23 00 23 00 00 00 28 00 28 00 00
00 29 00 29 00 01 00 2A 00 2A 00 02 00 2B 00 2B
00 FF FF 2C 00 2C 00 FF FF 2D 00 2D 00 02 00 2E
00 2E 00 00 00 42 00 42 00 01 00 43 00 43 00 00
00 50 00 50 00 01 00 55 00 55 00 00 00 5C 00 5C
00 01 00 5D 00 5D 00 00 00 6D 00 6D 00 05 00 6E
00 6E 00 01 00 90 00 90 00 01 00 91 00 91 00 00
00 92 00 92 00 02 00 93 00 93 00 01 00 94 00 94
00 00 00 9B 00 9B 00 01 00 9C 00 9C 00 00 00 9D
00 9D 00 01 00 9E 00 9E 00 00 00 9F 00 9F 00 00
00 A0 00 A0 00 01 00 A1 00 A1 00 00 00 A2 00 A2
00 02 00 A3 00 A3 00 01 00 D1 00 D1 00 01 00 D2
00 D2 00 00 00 FF FF FF FF 00 00
Handle 0xDA01, DMI type 218, 251 bytes
OEM-specific Type
Header and Data:
DA FB 01 DA B2 00 04 EF 1E B6 10 EA 00 EA 00 00
00 EB 00 EB 00 01 00 EC 00 EC 00 02 00 ED 00 ED
00 00 00 F0 00 F0 00 01 00 F5 00 F5 00 04 00 F6
00 F6 00 00 00 09 01 09 01 00 00 0E 01 0E 01 01
00 0F 01 0F 01 00 00 17 01 17 01 00 00 18 01 18
01 01 00 2B 01 2B 01 01 00 2C 01 2C 01 00 00 35
01 35 01 FF 00 38 01 38 01 01 00 39 01 39 01 02
00 44 01 44 01 00 00 45 01 45 01 01 00 46 01 46
01 00 00 47 01 47 01 01 00 4A 01 4A 01 00 00 4B
01 4B 01 01 00 4C 01 4C 01 01 00 4D 01 4D 01 00
00 4E 01 4E 01 00 00 4F 01 4F 01 01 00 52 01 52
01 01 00 53 01 53 01 00 00 54 01 54 01 00 00 55
01 55 01 01 00 7F 01 7F 01 00 00 80 01 80 01 01
00 98 01 98 01 04 00 9B 01 9B 01 00 00 9C 01 9C
01 01 00 A1 01 A1 01 00 00 A2 01 A2 01 01 00 A3
01 A3 01 00 00 FF FF FF FF 00 00
Handle 0xDA02, DMI type 218, 251 bytes
OEM-specific Type
Header and Data:
DA FB 02 DA B2 00 04 EF 1E B6 10 A4 01 A4 01 01
00 A5 01 A5 01 00 00 A6 01 A6 01 01 00 A7 01 A7
01 00 00 A8 01 A8 01 01 00 DE 01 DE 01 00 00 DF
01 DF 01 01 00 EA 01 EA 01 00 00 EB 01 EB 01 01
00 FC 01 FC 01 00 00 FD 01 FD 01 01 00 04 02 04
02 00 00 05 02 05 02 01 00 16 02 16 02 06 00 31
02 31 02 04 00 32 02 32 02 02 00 33 02 33 02 01
00 4A 02 4A 02 01 00 4B 02 4B 02 01 00 4C 02 4C
02 00 00 64 02 64 02 01 00 65 02 65 02 00 00 66
02 66 02 01 00 67 02 67 02 00 00 68 02 68 02 01
00 69 02 69 02 00 00 6C 02 6C 02 01 00 6D 02 6D
02 00 00 6E 02 6E 02 00 00 A7 02 A7 02 01 00 A8
02 A8 02 00 00 BD 02 BD 02 01 00 BE 02 BE 02 00
00 CD 02 CD 02 01 00 E3 02 E3 02 01 00 E4 02 E4
02 00 00 E5 02 E5 02 01 00 F4 02 F4 02 01 00 F5
02 F5 02 00 00 FF FF FF FF 00 00
Handle 0xDA03, DMI type 218, 251 bytes
OEM-specific Type
Header and Data:
DA FB 03 DA B2 00 04 EF 1E B6 10 FD 02 FD 02 01
00 FE 02 FE 02 00 00 0F 03 0F 03 02 00 12 03 12
03 03 00 13 03 13 03 01 00 14 03 14 03 00 00 15
03 15 03 01 00 16 03 16 03 00 00 17 03 17 03 01
00 18 03 18 03 00 00 19 03 19 03 01 00 1A 03 1A
03 00 00 1B 03 1B 03 01 00 1C 03 1C 03 00 00 1D
03 1D 03 01 00 1E 03 1E 03 00 00 1F 03 1F 03 01
00 20 03 20 03 00 00 25 03 25 03 01 00 26 03 26
03 01 00 4F 03 4F 03 01 00 50 03 50 03 00 00 5D
03 5D 03 01 00 5E 03 5E 03 00 00 5F 03 5F 03 01
00 60 03 60 03 00 00 61 03 61 03 01 00 62 03 62
03 00 00 6F 03 6F 03 FF FF 83 03 83 03 07 00 95
03 95 03 01 00 96 03 96 03 00 00 BE 03 BE 03 FF
FF C6 03 C6 03 00 00 C7 03 C7 03 01 00 C8 03 C8
03 02 00 C9 03 C9 03 01 00 CA 03 CA 03 00 00 CB
03 CB 03 FF FF FF FF FF FF 00 00
Handle 0xDA04, DMI type 218, 251 bytes
OEM-specific Type
Header and Data:
DA FB 04 DA B2 00 04 EF 1E B6 10 D3 03 D3 03 FF
FF D4 03 D4 03 01 00 D5 03 D5 03 00 00 D6 03 D6
03 01 00 D7 03 D7 03 00 00 E2 03 E2 03 00 00 E3
03 E3 03 01 00 E4 03 E4 03 00 00 E5 03 E5 03 01
00 F6 03 F6 03 01 00 F7 03 F7 03 00 00 1A 04 1A
04 01 00 1B 04 1B 04 00 00 1E 04 1E 04 01 00 1F
04 1F 04 00 00 20 04 20 04 FF FF 28 04 28 04 04
00 29 04 29 04 00 00 2A 04 2A 04 02 00 2B 04 2B
04 FF FF 31 04 31 04 FF FF 32 04 32 04 01 00 33
04 33 04 00 00 36 04 36 04 01 00 37 04 37 04 00
00 4B 04 4B 04 01 00 4C 04 4C 04 00 00 4D 04 4D
04 00 00 4E 04 4E 04 01 00 4F 04 4F 04 02 00 61
04 61 04 01 00 62 04 62 04 00 00 7B 04 7B 04 01
00 7C 04 7C 04 00 00 7F 04 7F 04 02 00 87 04 87
04 01 00 88 04 88 04 00 00 98 04 98 04 FF FF 9C
04 9C 04 01 00 FF FF FF FF 00 00
Handle 0xDA05, DMI type 218, 251 bytes
OEM-specific Type
Header and Data:
DA FB 05 DA B2 00 04 EF 1E B6 10 9D 04 9D 04 00
00 9E 04 9E 04 01 00 9F 04 9F 04 00 00 DC 04 DC
04 FF FF E4 04 E4 04 FF FF E6 04 E6 04 01 00 E7
04 E7 04 00 00 EC 04 EC 04 01 00 ED 04 ED 04 00
00 00 05 00 05 FF FF 12 05 12 05 00 00 13 05 13
05 01 00 14 05 14 05 02 00 3B 05 3B 05 00 00 47
05 47 05 00 00 48 05 48 05 01 00 52 05 52 05 01
00 53 05 53 05 00 00 58 05 58 05 01 00 59 05 59
05 00 00 5A 05 5A 05 01 00 5B 05 5B 05 00 00 5C
05 5C 05 01 00 5D 05 5D 05 00 00 5E 05 5E 05 01
00 5F 05 5F 05 00 00 60 05 60 05 FF FF 65 05 65
05 FF FF 3E 40 3E 40 00 00 3F 40 3F 40 01 00 4C
40 4C 40 FF FF 4D 40 4D 40 01 00 4E 40 4E 40 00
00 4F 40 4F 40 01 00 50 40 50 40 00 00 00 80 00
80 00 00 02 80 02 80 02 00 03 80 03 80 03 00 0C
80 0C 80 00 00 FF FF FF FF 00 00
Handle 0xDA06, DMI type 218, 83 bytes
OEM-specific Type
Header and Data:
DA 53 06 DA B2 00 04 EF 1E B6 10 0D 80 0D 80 00
00 0E 80 0E 80 01 00 0F 80 0F 80 FF FF 11 80 11
80 01 00 12 80 12 80 FF FF 13 80 13 80 00 00 14
80 14 80 00 00 00 A0 00 A0 01 00 04 A0 04 A0 01
00 06 F0 06 F0 00 00 06 F1 06 F1 00 00 FF FF FF
FF 00 00
Handle 0xDC00, DMI type 220, 22 bytes
OEM-specific Type
Header and Data:
DC 16 00 DC 00 F1 00 00 02 F1 00 00 00 00 00 00
00 00 00 00 00 00
Handle 0xDC01, DMI type 220, 22 bytes
OEM-specific Type
Header and Data:
DC 16 01 DC 10 F1 00 00 12 F1 00 00 00 00 00 00
00 00 00 00 00 00
Handle 0xDC02, DMI type 220, 22 bytes
OEM-specific Type
Header and Data:
DC 16 02 DC 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00
Handle 0xDC03, DMI type 220, 22 bytes
OEM-specific Type
Header and Data:
DC 16 03 DC 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00
Handle 0xDC04, DMI type 220, 22 bytes
OEM-specific Type
Header and Data:
DC 16 04 DC 50 F1 00 00 52 F1 00 00 00 00 00 00
00 00 00 00 00 00
Handle 0xDD00, DMI type 221, 19 bytes
OEM-specific Type
Header and Data:
DD 13 00 DD 02 01 00 00 F6 01 F6 00 00 00 00 00
00 00 00
Handle 0xDE00, DMI type 222, 16 bytes
OEM-specific Type
Header and Data:
DE 10 00 DE 01 04 00 00 24 12 21 03 03 01 00 00
Handle 0xF027, DMI type 218, 65 bytes
OEM-specific Type
Header and Data:
DA 41 27 F0 B2 00 04 EF 1E B6 10 00 F1 00 F1 01
00 02 F1 02 F1 01 00 10 F1 10 F1 01 00 12 F1 12
F1 01 00 50 F1 50 F1 01 00 52 F1 52 F1 01 00 00
F6 00 F6 01 00 01 F6 01 F6 01 00 FF FF FF FF 00
00
Handle 0xF028, DMI type 130, 20 bytes
OEM-specific Type
Header and Data:
82 14 28 F0 24 41 4D 54 00 00 00 00 00 A5 AF 02
80 00 00 00
Handle 0xF029, DMI type 131, 64 bytes
OEM-specific Type
Header and Data:
83 40 29 F0 35 00 00 00 0C 00 00 00 00 00 0A 00
F8 00 C8 A3 00 00 00 00 01 00 00 00 05 00 0E 00
D3 08 37 00 00 00 00 00 FE 00 FF FF 00 00 00 00
00 00 00 00 26 00 00 00 76 50 72 6F 00 00 00 00
Handle 0xF030, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:00.0
Handle 0xF031, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Video
Type: Video
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:02.0
Handle 0xF032, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 2
Bus Address: 0000:00:08.0
Handle 0xF033, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 3
Bus Address: 0000:00:14.0
Handle 0xF034, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 4
Bus Address: 0000:00:14.2
Handle 0xF035, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 5
Bus Address: 0000:00:16.0
Handle 0xF036, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - SATA
Type: SATA Controller
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:17.0
Handle 0xF037, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 6
Bus Address: 0000:00:1f.0
Handle 0xF038, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 7
Bus Address: 0000:00:1f.2
Handle 0xF039, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Sound
Type: Sound
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:1f.3
Handle 0xF03A, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard - Other
Type: Other
Status: Enabled
Type Instance: 8
Bus Address: 0000:00:1f.4
Handle 0xF03B, DMI type 237, 89 bytes
OEM-specific Type
Header and Data:
ED 59 3B F0 0C 01 00 FF FF FF FF FF 02 00 FF FF
FF FF FF 03 04 FF FF FF FF FF 05 06 FF FF FF FF
FF 07 08 FF FF FF FF FF 09 00 00 00 00 00 00 0A
00 FF FF FF FF 00 0B 00 FF FF 00 00 00 0C 00 00
09 00 07 11 0D 00 FF FF FF FF FF 0E 00 00 07 00
00 00 0F 00 00 02 00 0F 00
Strings:
Lan Phy Version
Sensor Firmware Version
Debug Mode Status
Disabled
Performance Mode Status
Disabled
Debug Use USB(Disabled:Serial)
Disabled
ICC Overclocking Version
UNDI Version
EC FW Version
GOP Version
Royal Park Version
Platform Version
Client Silicon Version
Handle 0xF042, DMI type 14, 8 bytes
Group Associations
Name: $MEI
Items: 1
0x0000 (OEM-specific)
Handle 0xF043, DMI type 235, 106 bytes
OEM-specific Type
Header and Data:
EB 6A 43 F0 01 04 01 45 02 00 90 06 01 85 36 20
00 00 00 00 40 00 00 03 1F 04 00 C9 03 C0 47 02
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF